home *** CD-ROM | disk | FTP | other *** search
- /* AssignF7.rex */
- /* ------------ */
- /* Description: This script pops a file requester asking for an ARexx */
- /* script path. It will then assign it to the F7 key so */
- /* that the next time you hit F7, it will be executed. */
-
- options results
-
- address 'JCGRAPH'
-
- 'requestfile title=Assign_Script_to_F7 path=JcGraph:rexx'
-
- HisAssign=result
-
- if RC == 0 then do
- 'keyboard key=F7 cmd=' || HisAssign
- 'requestnotify F7 was assigned to ' HisAssign
- end